func runtime.fastrand

21 uses

	runtime (current package)
		alg.go#L68: 		return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
		alg.go#L80: 		return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
		map.go#L241: 	if fastrand()&mask == 0 {
		map.go#L295: 	h.hash0 = fastrand()
		map.go#L314: 	h.hash0 = fastrand()
		map.go#L799: 				h.hash0 = fastrand()
		map.go#L845: 	r := uintptr(fastrand())
		map.go#L847: 		r += uintptr(fastrand()) << 31
		map.go#L1016: 	h.hash0 = fastrand()
		map_fast32.go#L351: 				h.hash0 = fastrand()
		map_fast64.go#L353: 				h.hash0 = fastrand()
		map_faststr.go#L379: 				h.hash0 = fastrand()
		mprof.go#L412: 	if rate <= 0 || (rate > cycles && int64(fastrand())%rate > cycles) {
		mprof.go#L467: 	if rate > 0 && int64(fastrand())%rate == 0 {
		proc.go#L2844: 		for enum := stealOrder.start(fastrand()); !enum.done(); enum.next() {
		proc.go#L4123: 	newg.trackingSeq = uint8(fastrand())
		sema.go#L300: 	s.ticket = fastrand() | 1
		stubs.go#L126: func fastrand() uint32 {
		stubs.go#L156: 	return uint32(uint64(fastrand()) * uint64(n) >> 32)
		stubs.go#L163: func net_fastrand() uint32 { return fastrand() }
		stubs.go#L166: func os_fastrand() uint32 { return fastrand() }